home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / asm / games / takeover / backstab_lib.i next >
Text File  |  1980-01-03  |  531b  |  24 lines

  1. ;This is the include file for backstab.library version 1.0
  2.  
  3. _LVOTakeOverSystem:    equ    -30
  4. _LVOReturnToSystem:    equ    -36
  5. _LVOActivateSystem:    equ    -42
  6. _LVODeactivateSystem:    equ    -48
  7. _LVOFullTakeOver:    equ    -54
  8. _LVODoReset:        equ    -60
  9. _LVOFlushCaches:    equ    -66
  10.  
  11. bsb_supervisor:        equ    1            ;bits for flags
  12. bsb_nocaches:        equ    0            ;
  13.  
  14. bsf_supervisor:        equ    1<<bsb_supervisor    ;values for flags
  15. bsf_nocaches:        equ    1<<bsb_nocaches        ;
  16.  
  17. CALLBACKSTAB:    macro
  18.     move.l    _BackStabBase,a6
  19.     jsr    _LVO\1(a6)
  20.     endm
  21. BACKSTABNAME:    macro
  22.     dc.b    'backstab.library',0
  23.     endm
  24.